@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

/* BODY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

:root {
    --main-bg-color: linear-gradient(60deg, rgb(234, 151, 7) 0%, rgb(233, 48, 6) 100%);
}


body {
    font-family:'open sans';
}

/* HEADER */

.Header{
    height: auto;
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
    height: 80px;
    transition: 0.5s;
}

.logo{
    height: 95%;
    cursor: pointer;
}

.lista-menu{
    display: flex;
    list-style: none;
    list-style-type: none;
    justify-content: center;
    align-items: center;
}

.menu-item{
    margin: 0 1rem;
    font-weight: 600;
    transition: 0.5s;
}

li a{
    font-size: 16px;
}

li .nav-menu-link{
    color: white;
    text-decoration: none;
}

.nav-menu-link:hover{
    color: yellow;
}

.nav-toggle {
    color: white;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;
    display: none;
}

@media (max-width: 1175px){
    .logo {
        font-size: 25px;
        padding: 0 20px;
        line-height: 60px;
      }

    .lista-menu {
        flex-direction: column;
        align-items: center;
        margin: 0;
        background: var(--main-bg-color);
        position: fixed;
        top: 80px;
        width: 100%;
        padding: 20px 0;
        height: calc(100% - 60px);
        overflow-y: auto;
        left: 100%;
        transition: left 0.3s;
    }

    .menu-item {
        line-height: 80px;
    }

    .nav-menu-link{
        font-size: 25px;
    }

    .nav-menu-link:hover,
    .nav-menu-link_active {
        background: none;
        color: yellow;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu_visible {
        left: 0;
    }
    
    .nav-toggle:focus:not(:focus-visible) {
        outline: none;
    }
}

/* HOME */

.Home{
    background: var(--main-bg-color);
    color: #fff;
    padding: 50px 0 0 0;
}

.home {
    height: 75vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.home-titulo h1{
    font-size: 55px;
    font-family: Franklin Gothic Medium;
}

.home-titulo h2{
    font-size: 35px;
    font-family: Franklin Gothic Medium;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.waves {
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 100px;
}

.parallax > use {
    -webkit-animation: moveForever 25s cubic-bezier(.55, .5, .45, .5) infinite;
            animation: moveForever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
    -webkit-animation-duration: 7s;
            animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    -webkit-animation-delay: -3s;
            animation-delay: -3s;
    -webkit-animation-duration: 10s;
            animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    -webkit-animation-delay: -4s;
            animation-delay: -4s;
    -webkit-animation-duration: 13s;
            animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    -webkit-animation-delay: -5s;
            animation-delay: -5s;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
}

@-webkit-keyframes moveForever {
    0% {
        -webkit-transform: translate3d(-90px, 0, 0);
                transform: translate3d(-90px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(85px, 0, 0);
                transform: translate3d(85px, 0, 0);
    }
}

@keyframes moveForever {
    0% {
        -webkit-transform: translate3d(-90px, 0, 0);
                transform: translate3d(-90px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(85px, 0, 0);
                transform: translate3d(85px, 0, 0);
    }
}

@media (max-width : 768px) {
    .content {
        height: 30vh;
    }
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/* FOOTER */

footer{
    background: #414141;
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
}

.contenedor-footer{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    margin: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #ccc;
}

.content-foo{
    text-align: center;
}

.content-foo h4{
    color: #fff;
    border-bottom: 3px solid #af20d3;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.content-foo p{
    color: #ccc;
}

.contenedor-footer p {
    padding: 4px;
}

.link-store{
    height: 70px;
}

.titulo-final{
    text-align: center;
    font-size: 24px;
    margin: 20px 0 0 0;
    color: #9e9797;
}

@media screen and (max-width:795px){ 
    /* Footer */

    .contenedor-footer{
        flex-direction: column;
        border: none;
    }

    .content-foo{
        margin-bottom: 20px;
        text-align: center;
    }

    .content-foo h4{
        border: none;
    }

    .contenedor-footer p {
        padding: 4px;
    }

    .final-linea{
        color: #ccc;
        border-bottom: 3px solid #fff;
        padding-bottom: 20px;
    }

    .titulo-final{
        font-size: 15px;
    }
}